home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / ptv2n1.arc / HELLO1.PAS < prev    next >
Pascal/Delphi Source File  |  1991-03-26  |  147b  |  10 lines

  1. program Hello;
  2. uses
  3.   WinCRT, Strings;
  4. begin
  5.   StrCopy(windowTitle,'Hello!');
  6.   Writeln('Hello, Whirled!');
  7.   Readln;
  8.   DoneWinCRT;
  9. end.
  10.